home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Arashi 1.1 / Game Source / jaf src / STORMLogo.c < prev   
Text File  |  1992-12-07  |  1KB  |  79 lines

  1. /*/
  2.      Project Arashi: STORMLogo.c
  3.      Major release: Version 1.1, 7/22/92
  4.  
  5.      Last modification: Monday, December 7, 1992, 21:36
  6.      Created: Friday, January 11, 1991, 16:59
  7.  
  8.      Copyright © 1991-1992, Juri Munkki
  9. /*/
  10.  
  11. /*
  12. **    STORM Logo text data.        //Jaf © copyright 1991
  13. */
  14.  
  15. int        logopoints=40;
  16. int        logolines=29;
  17.  
  18. int stormxtable[]=
  19.     {    3,6,9,8,7,                    /* a 0-4 */
  20.         8,13,14,15,13,12,11,13,        /* r 5-12 */
  21.         14,17,20,19,18,                /* a 13-17 */
  22.         19,19,21,22,21,23,25,25,    /* s 18-25 */
  23.         22,25,28,27,30,33,            /* h 26-31 */
  24.         29,31,33,35,37,39,            /* i 32-37 */
  25.         2,37                            /* underline */
  26.     };
  27.     
  28. int        stormytable[]=
  29.     {    8,4,0,4,8,
  30.         8,0,0,2,4,4,4,8,
  31.         8,4,0,4,8,
  32.         7,8,8,6,2,0,0,1,
  33.         8,4,0,8,4,0,
  34.         8,8,8,0,0,0,
  35.         9,9
  36.     };
  37.  
  38.  
  39.  
  40. int        stormlinetable[][2]=
  41.         {    { 0,2 },
  42.             { 2,4 },
  43.             { 3,1 },    /* A 0-4  (3) */
  44.             
  45.             { 5,6 },    
  46.             { 6,7 },
  47.             { 7,8 },
  48.             { 8,9 },
  49.             { 9,10 },  
  50.             { 10,11 },
  51.             { 11,12 }, /* R 5-12 (7) */
  52.             
  53.             { 13,15 }, 
  54.             { 15,16 },
  55.             { 16,14 },
  56.             { 14,16 }, 
  57.             { 16,17 }, /* A 13-17 (5) */
  58.             
  59.             { 18,19 },
  60.             { 19,20 },
  61.             { 20,21 },    
  62.             { 21,22 },
  63.             { 22,23 },
  64.             { 23,24 },
  65.             { 24,25 },     /* S 18-25 (7) */
  66.             
  67.             { 26,28 },
  68.             { 27,30 },
  69.             { 29,31 },  /* H  26-31 (5) */
  70.             
  71.             { 32,34 },    
  72.             { 35,37 },
  73.             { 36,33 },     /* I 32-37 (5)*/
  74.             
  75.             /* { 0,38 }, */
  76.             { 39,38 }    /* underline */
  77.         };
  78.  
  79.